home *** CD-ROM | disk | FTP | other *** search
- // test.rc
- //............................................................................
- // includes
-
- #if !defined (WORKSHOP_INVOKED)
- #include <windows.h>
- #endif
- #include "resource.h"
-
- //............................................................................
- // Icons
-
- IDI_MAIN ICON table.ico
-
- //............................................................................
- // Menus
-
- IDM_MAIN MENU
- {
- MENUITEM " |< ", IDM_NAV_FIRST
- MENUITEM " << ", IDM_NAV_PRIORSET
- MENUITEM " < ", IDM_NAV_PRIOR
- MENUITEM " > ", IDM_NAV_NEXT
- MENUITEM " >> ", IDM_NAV_NEXTSET
- MENUITEM " >| ", IDM_NAV_LAST
- }
-
- //............................................................................
- // Strings
-
- STRINGTABLE
- {
- #ifdef __FLAT__
- IDS_MAINTITLE, "Table 32"
- #else
- IDS_MAINTITLE, "Table 16"
- #endif
- }
-
- //............................................................................
-